home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / games2 / rotise12.zip / BB.H < prev    next >
C/C++ Source or Header  |  1992-04-03  |  408b  |  22 lines

  1. /* bb.h - General definitions used in all of the roto stats sources.
  2.  
  3.     M. Mallett    April 1990
  4.  
  5. */
  6.  
  7. #ifndef    H_BB                /* Allow multiple inclusions */
  8. #define    H_BB
  9.  
  10. #include "portab.h"
  11.  
  12. /* Error codes */
  13.  
  14. #define    EC_OK        0        /* Not an error */
  15. #define    EC_NOTOK    1        /* General not-good error */
  16. #define    EC_MEMORY    2        /* Memory allocation */
  17.  
  18.  
  19. /* Routines globally available */
  20.  
  21. #endif    /* H_BB  */
  22.